home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
util
/
arc
/
xFX.lha
/
xFX
/
ARexx
/
DiskCopy.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-22
|
600b
|
31 lines
/*
**************************
**** xFX ARexx script ****
**************************
DiskCopy
*/
if ~show('P','xFX.1') then do /* Check if xFX is running */
say 'xFX not running !'
exit
end
InDev = ''
OutDev = ''
say 'Input device:'
parse pull InDev
if InDev ~= '' then do
say 'Output device:'
parse pull OutDev
if OutDev ~= '' then do
if InDev ~= OutDev then address 'xFX.1' copy InDev to OutDev verify
else address 'xFX.1' copy InDev verify
say 'Done.'
end
end